HTMLify
style.css
Views: 15 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | * { padding: 0; margin: 0; box-sizing: border-box; } body { display: flex; justify-content: space-around; } .container { width: 50%; background: crimson; display: flex; justify-content: center; align-items: center; } .container input { padding: 10px 20px; margin-left: 10px; outline: none; } .container .result-btn { border: none; border-radius: 5px; padding: 12px 20px; cursor: pointer; } .results-container { height: 100%; width: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; } |